    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #0a0a0a;
      color: #f0f0f0;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    header {
      height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    h1 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: #fff;
    }

    p {
      color: #999;
      margin-top: 1rem;
      font-size: 1.2rem;
    }

    .links-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding: 60px 20px;
      max-width: 900px;
      margin: auto;
    }

    .link-card {
      background-color: #111;
      border: 1px solid #222;
      border-radius: 10px;
      padding: 40px 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .link-card:hover {
      border-color: #fff;
      transform: scale(1.03);
    }

    .link-card h3 {
      color: #fff;
      font-weight: 600;
      font-size: 1.3rem;
    }

    footer {
      text-align: center;
      padding: 20px;
      color: #666;
      font-size: 0.9rem;
      border-top: 1px solid #111;
    }

    /* ===== MODAL ===== */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      z-index: 999;
    }

    .modal.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      background: rgba(20, 20, 20, 0.6);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 40px;
      border-radius: 14px;
      max-width: 700px;
      width: 90%;
      text-align: center;
      transform: scale(0.9);
      transition: transform 0.3s ease, opacity 0.3s ease;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
      position: relative;
    }

    .modal.active .modal-content {
      transform: scale(1);
      opacity: 1;
    }

    .modal h2 {
      color: #fff;
      margin-bottom: 15px;
    }

    .modal p {
      color: #ccc;
      line-height: 1.6;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 25px;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #fff;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .close-btn:hover {
      color: #aaa;
    }
    .modal-content {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      transition: all 0.4s ease;
    }
    .modal.active .modal-content {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    @media (max-width: 768px) {
      h1 {
        font-size: 2.2rem;
      }
      .modal-content {
        padding: 25px;
      }
    }
    .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
    }
    .gallery img {
      width: 200px;
      height: 130px;
      border-radius: 10px;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
    .lightbox {
      display: none; /* hidden by default */
      position: fixed;
      z-index: 2000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(3px);
    }
    .lightbox img {
      max-width: 85%;
      max-height: 85%;
      border-radius: 10px;
      box-shadow: 0 0 30px rgba(255,255,255,0.1);
      animation: zoomIn 0.3s ease;
    }
    .close-lightbox {
      position: absolute;
      top: 25px;
      right: 40px;
      font-size: 40px;
      color: white;
      cursor: pointer;
      transition: 0.3s;
    }
    .close-lightbox:hover {
      color: #aaa;
    }
    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    .about-modal {
      text-align: center;
      animation: fadeIn 0.8s ease;
    }
    .about-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .profile-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.2);
      object-fit: cover;
      animation: float 4s ease-in-out infinite;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }
    .subtitle {
      color: #aaa;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }
    .about-text {
      max-width: 420px;
      margin-top: 15px;
      line-height: 1.6;
      color: #ccc;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
   .scrollable {
      max-height: 80vh; 
      overflow-y: auto; 
      padding-right: 10px; 
    }
    .scrollable::-webkit-scrollbar {
      width: 8px;
    }
    .scrollable::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
    }
    .scrollable::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 10px;
    }
    .scrollable::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.25);
    }
    body.modal-open {
      overflow: hidden; 
    }
    .anime-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px;
      background: #0a0a0a;
      min-height: 100vh;
    }
    .anime-card {
      width: 220px;
      height: 320px;
      perspective: 1000px;
      cursor: pointer;
    }
    .anime-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.8s ease;
    }
    .anime-card.flip .anime-inner {
      transform: rotateY(180deg);
    }
    .anime-front, .anime-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      backface-visibility: hidden;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(255,255,255,0.1);
    }
    .anime-front {
      background: #111;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      text-align: center;
      transition: all 0.3s ease;
    }
    .anime-front img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      display: block;
    }
    .anime-front h3 {
      padding: 10px;
      background: rgba(0, 0, 0, 0.7);
      width: 100%;
      margin: 0;
      font-size: 1.1em;
      color: #ffb400;
      letter-spacing: 0.5px;
    }
    .anime-back {
      background: linear-gradient(145deg, #141414, #1b1b1b);
      color: #eee;
      transform: rotateY(180deg);
      padding: 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .anime-back h2 {
      color: #ffb400;
      margin-bottom: 10px;
    }
    .anime-back p {
      font-size: 0.9em;
      color: #bbb;
      line-height: 1.4em;
    }
    